Conversation
CVE-2025-48924 (commons-lang3) - FIXED: No longer appears in the scan ✅ Commons-compress infinite loop vulnerability - FIXED: No longer appears in the scan The only remaining vulnerabilities are low-severity Information Exposure issues in Kotlin stdlib through okhttp3 dependencies, which are much less critical. What we accomplished: Added version variables to libs.versions.toml: commonsCompress = "1.26.0" commonsLang3 = "3.18.0" Added library definitions for both dependencies Implemented dependency resolution strategy in build.gradle using the version catalog variables: Forces commons-compress to 1.26.0 (fixes infinite loop vulnerability) Forces commons-lang3 to 3.18.0 (fixes CVE-2025-48924) Verified the fixes work through: Dependency tree showing version overrides Snyk scan confirming vulnerabilities are resolved
There was a problem hiding this comment.
Pull Request Overview
This PR addresses security vulnerabilities by updating dependency versions to fix CVE-2025-48924 and a commons-compress infinite loop vulnerability. The changes involve adding version management through Gradle's version catalog for commons-compress and commons-lang3 libraries.
- Added version variables for commons-compress (1.26.0) and commons-lang3 (3.18.0) to fix security vulnerabilities
- Added library definitions for both dependencies in the version catalog
- Enables centralized version management and dependency resolution strategy implementation
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
fdevans
marked this pull request as draft
September 11, 2025 18:58
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Note: this will fail until #588 is merged and this branch updated.
CVE-2025-48924 (commons-lang3) - FIXED: No longer appears in the scan
Commons-compress infinite loop vulnerability - FIXED: No longer appears in the scan
What we accomplished:
Added version variables to libs.versions.toml:
commonsCompress = "1.26.0"
commonsLang3 = "3.18.0"
Added library definitions for both dependencies
Implemented dependency resolution strategy in build.gradle using the version catalog variables:
Forces commons-compress to 1.26.0 (fixes infinite loop vulnerability) Forces commons-lang3 to 3.18.0 (fixes CVE-2025-48924) Verified the fixes work through:
Dependency tree showing version overrides
Snyk scan confirming vulnerabilities are resolved